home *** CD-ROM | disk | FTP | other *** search
- /* Box arexx test */
-
- options results
- parse ARG Port x1 y1 x2 y2 b
- ADDRESS value Port
-
- pp_GetDepth
- D=result
- IF D<24 then DO
- pp_Warn 'This*script*is*only|for*24bits*Picture.'
- pp_PermitRefresh
- Exit
- END
-
- type=0
- pp_DialogInit 150 60 "*Coral*" 1
- pp_Cycle 0 50 8 70 16 "Size" 1 "1|2|3|4|5|6" type
- pp_Dialog
- rc=result
- if rc=0 then
- do
- EXIT
- end
-
- pp_GetDialog 0
- type=result
-
- pp_AvoidRefresh
- pp_UpdateUndoBox x1-1 y1-1 x2+1 y2+1
-
- pp_ComposeReqOff
- pp_Compose 0 100 0
- pp_EffectOn
- pp_ProgressText 'Coral'
-
- pp_Straw 3 (type+2)*5
- pp_Progress 1 4
- pp_BoxF x1 y1 x2 y2
- pp_Maximum 1
- pp_Progress 2 4
- pp_BoxF x1 y1 x2 y2
- pp_Minimum 1
- pp_Progress 3 4
- pp_BoxF x1 y1 x2 y2
-
- pp_PermitRefresh
- pp_EffectOff
- pp_ComposeReqOn
- pp_Progressclr
-
- Exit
-